The input range to union with this range
Union(IRange<T>) Method
Performs a Union logical operation between two ranges. The returned IRange<T> has Min = Math.Min(range1.min, range2.min) and Max = Math.Max(range1.Max, range2.Max)
Syntax
public IRange<T> Union( 
   IRange<T> range
)

Parameters

range
The input range to union with this range

Return Value

The range result
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also